home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #7 / K-CD-7-2002.ISO / Xara Webstyle 2.1 / data1.cab / SysFolder / navstub.js < prev    next >
Encoding:
Text File  |  2002-01-15  |  1.9 KB  |  72 lines

  1. function writeButton(urld, url, name, w, h, alt, target, hsp)
  2. {
  3.     gname = name;
  4.     while(typeof(document[name])!="undefined") name += "x";
  5.     reg(gname, name);
  6.     tr(true);
  7.     document.write("<td>");
  8.     if (alt != "") alt = " alt=\"" + alt + "\"";
  9.     if (target != "") target = " target=\"" + target + "\"";
  10.     if (w > 0) w = " width="+w; else w = "";
  11.     if (h > 0) h = " height="+h; else h = "";    
  12.     var l = clicked!="" || !isCurrentFile(url);
  13.     if (url != "") url = " href=\"" + urld + url + "\"";
  14.     
  15.     if (l) document.write("<a " + url + evs(name) + target + ">");
  16.     else gname += selstate;
  17.     
  18.     gname += gtype;
  19.     
  20.     if (hsp == -1) hsp =" align=right";
  21.     else if (hsp > 0) hsp = " hspace="+hsp;
  22.     else hsp = "";
  23.     
  24.     document.write("<img src=\""+loc+gname+"\" name=\"" + name + "\"" + w + h + alt + hsp + " border=0>");
  25.     
  26.     if (l) document.write("</a>");
  27.         
  28.     document.write("</td>");
  29.     tr(false);
  30. }
  31.  
  32. function syncFile(f,nf)
  33. {
  34.     var matches = 'home.html*index.html*welcome.html*default.asp';
  35.     var p = f.lastIndexOf('/');
  36.     
  37.     if (p < 1) return "";
  38.     
  39.     var sf = f.substr(p+1, f.length-1);
  40.     if (matches.indexOf(sf) == -1) return "";
  41.     
  42.     return sf;
  43. }
  44.  
  45. function isCurrentFile(str)
  46. {
  47.     str = str.toLowerCase();
  48.     while (str.length > 3 && str.substring(0,3) == "../")
  49.         str = str.substr(3, str.length-1);
  50.     var fstr = str.indexOf(".htm");
  51.     if (fstr < 1 && str.charAt(str.length-1) != '/') str += "/";
  52.     var current = document.location.href.toLowerCase();
  53.     var fcurrent = current.indexOf(".htm");
  54.     if (fcurrent < 1 && current.charAt(current.length-1) != '/') current += "/";    
  55.     if (fstr != -1 && fcurrent == -1) current += syncFile(str, current);
  56.     if (fstr == -1 && fcurrent != -1) str += syncFile(current, str);
  57.         
  58.     var currsize = current.length;
  59.     var strsize = str.length;
  60.  
  61.     while (strsize >=0 && currsize >=0)
  62.     {
  63.         if (current.charAt(currsize) != str.charAt(strsize))
  64.             return false;
  65.             
  66.         currsize = currsize -1;
  67.         strsize = strsize -1;
  68.     }
  69.     
  70.     return true;
  71. }
  72.